home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / shared-mime-info.postrm < prev    next >
Text File  |  2009-10-06  |  822b  |  36 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Automatically added by dh_installmime
  6. if [ -x "`which update-mime-database 2>/dev/null`" ]; then
  7.     update-mime-database /usr/share/mime
  8. fi
  9. # End automatically added section
  10.  
  11.  
  12. if [ "$1" = purge ]; then
  13.     MIMEDIR="/usr/share/mime"
  14.     if [ -d $MIMEDIR ]; then
  15.         rm -f "$MIMEDIR/globs" \
  16.               "$MIMEDIR/magic" \
  17.               "$MIMEDIR/XMLnamespaces" \
  18.               "$MIMEDIR/subclasses" \
  19.               "$MIMEDIR/aliases" \
  20.               "$MIMEDIR/mime.cache"
  21.  
  22.         rm -fr /usr/share/mime/text \
  23.                /usr/share/mime/inode \
  24.                /usr/share/mime/image \
  25.                /usr/share/mime/video \
  26.                /usr/share/mime/message \
  27.                /usr/share/mime/model \
  28.                /usr/share/mime/multipart \
  29.                /usr/share/mime/audio \
  30.                /usr/share/mime/application
  31.     
  32.         rmdir --ignore-fail-on-non-empty /usr/share/mime
  33.     fi
  34. fi
  35.  
  36.